home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / stdio / fscanf.c < prev    next >
C/C++ Source or Header  |  1988-07-28  |  2KB  |  71 lines

  1. /* 
  2.  * fscanf.c --
  3.  *
  4.  *    Source code for the "fscanf" library procedure.
  5.  *
  6.  * Copyright 1988 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  */
  15.  
  16. #ifndef lint
  17. static char rcsid[] = "$Header: fscanf.c,v 1.6 88/07/28 17:18:37 ouster Exp $ SPRITE (Berkeley)";
  18. #endif not lint
  19.  
  20. #include <stdio.h>
  21. #include <varargs.h>
  22.  
  23. /*
  24.  *----------------------------------------------------------------------
  25.  *
  26.  * fscanf --
  27.  *
  28.  *    Same as scanf, except take input from a given I/O stream
  29.  *    instead of stdin.
  30.  *
  31.  * Results:
  32.  *    The values indicated by va_alist are modified to hold
  33.  *    information scanned from stream.  The return value is the
  34.  *    number of fields successfully scanned, or EOF if the string
  35.  *    is empty.
  36.  *
  37.  * Side effects:
  38.  *    None.
  39.  *
  40.  *----------------------------------------------------------------------
  41.  */
  42.  
  43. #ifndef lint
  44. int
  45. fscanf(va_alist)
  46.     va_dcl            /* FILE *stream, then char *format, then
  47.                  * pointers to variables to be filled in
  48.                  * with values scanned under control of
  49.                  * format. */
  50. {
  51.     FILE *stream;
  52.     char *format;
  53.     va_list args;
  54.  
  55.     va_start(args);
  56.     stream = va_arg(args, FILE *);
  57.     format = va_arg(args, char *);
  58.     return vfscanf(stream, format, args);
  59. }
  60. #else
  61. /* VARARGS2 */
  62. /* ARGSUSED */
  63. int
  64. fscanf(stream, format)
  65.     FILE *stream;
  66.     char *format;
  67. {
  68.     return 0;
  69. }
  70. #endif lint
  71.